home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / iacs / setup.arv / IACSREG.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-09-15  |  1.7 KB  |  46 lines

  1. unit Iacsreg;
  2. {************************************************************************
  3.  * IACs for Delphi - INI Aware Components for Delphi                    *
  4.  * Copyright 1995-96 Strange Solutions Software - All Rights Reserved   *
  5.  *                                                                      *
  6.  *                                                                      *
  7.  * Component Pallette Registration Unit                                 *
  8.  *                                                                      *
  9.  ************************************************************************}
  10.  
  11. interface
  12.  
  13. Procedure Register;
  14.  
  15. implementation
  16. Uses IACS, IACSDB, IAConn ,IAButtns ,IADialgs, IAExCtls, Classes;
  17.  
  18. Procedure Register;
  19. Begin
  20.     RegisterComponents('IACs',[TIASource,
  21.                                 { IACs}
  22.                                                        TIAEdit,
  23.                              TIALabel,
  24.                              TIACheckBox,
  25.                              TIAComboBox,
  26.                              TIARadioGroup,
  27.                              TIAListBox,
  28.                              TIAEditCombo,
  29.                              TIARadioButton,
  30.                                 { IABtns}
  31.                              TIASRButton,
  32.                              TIASRBitBtn,
  33.                              TIASRSpeedButton,
  34.                                 { IADialgs}
  35.                              TIASaveDialog,
  36.                              TIAOpenDialog,
  37.                                 { IACsDB}
  38.                              TIADBComboBox,
  39.                                 { IAExCtrls}
  40.                              TIASpinEdit,
  41.                              TIAMaskEdit,
  42.                              TIAScrollBar]);
  43. End;
  44.  
  45. end.
  46.